home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / K_O / MDDOS150.ZIP / INSTALL.BAT next >
DOS Batch File  |  1993-04-15  |  2KB  |  59 lines

  1. @echo off
  2. cls
  3.  
  4. if %1!==! goto USAGE
  5. if not exist %1\MP.EXE goto ERR
  6.  
  7. echo In a moment, the patch program will update your Monopoly Deluxe for DOS
  8. echo version 1.00 files to version 1.50
  9. echo.
  10. echo Because the floppy disk contains almost 1Mb of changed data the patch
  11. echo process may take some time, especially on slower machines. 
  12. echo.
  13. echo If you have made custom changes to the MP.INI file, it will be renamed 
  14. echo to MP_INI_1.TXT so that you may easily incorporate your changes into 
  15. echo the new MP.INI file using a text editor or ASCII-compatible word 
  16. echo processor.
  17. echo.
  18. pause
  19.  
  20. cls
  21. ctty nul
  22. if exist %1\mp.ini ren %1\mp.ini mp_ini_1.txt
  23. if exist %1\mpprefs.cfg del %1\mpprefs.cfg
  24. ctty con
  25. patch %1
  26. goto SUCCESS
  27.  
  28. :ERR
  29. echo. 
  30. echo *** Could not find Monopoly Deluxe for DOS files in: 
  31. echo     %1 
  32. echo     please check path.
  33.  
  34. :USAGE
  35. echo. 
  36. echo To convert version 1.00 files from Monopoly Deluxe for DOS
  37. echo to version 1.50, log on to the floppy drive which contains
  38. echo the patch disk, then type "INSTALL" followed by a space and
  39. echo the name of the directory where the Monopoly Deluxe files
  40. echo were originally installed.
  41. echo. 
  42. echo For example, if the patch disk is located on a disk in
  43. echo drive A:, and Monopoly Deluxe was originally installed to 
  44. echo C:\MONOPOLY, the commands would look like this:
  45. echo. 
  46. echo A:
  47. echo INSTALL C:\MONOPOLY
  48. echo. 
  49. echo It is not necessary to remove the original files before
  50. echo installing the patch. The original files will be updated
  51. echo to contain the new data.
  52. goto end
  53.  
  54. :SUCCESS
  55. echo Updated "Monopoly Deluxe for DOS" to version 1.50
  56.  
  57. :END
  58. echo.
  59.